Replies: 1 comment
-
Use proot-distro debian within termux |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, termux-packages only host PYPI/npm/... packages which contain binary files like dynamic linked library, or some pure script package depended by a package which contain binary files. So it looks like user should mixed use apt (pkg)/pip/npm/...
So what is the best practice to manage packages in termux? I thought:
apt install
it.pip/npm/...
install it.However, if a package is not available in termux's apt (pkg), its dependence is available in termux's apt (pkg), what should we do?
Method 1:
apt install
them.pip/npm/...
install we required package.pip/npm/...
will skip those installed dependencies by apt (pkg)Method 2:
pip/npm/...
install we required packages and let these binary files are built from source.The troublesome of method 1:
pip/npm
because those dependencies installed by apt (pkg) are installed explicitly.
Method 2:
Which method is official recommended method?
Or is there third method? (repackage PYPI/npm packages to termux package and host it in user's apt source to make all dependencies are available in apt (pkg) then
apt install
)?I just be comfused. Thanks for any answer!
Beta Was this translation helpful? Give feedback.
All reactions