Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there any command for installing conda in linux system #350

Open
WW-web-ctrl opened this issue Oct 16, 2024 · 3 comments
Open

Is there any command for installing conda in linux system #350

WW-web-ctrl opened this issue Oct 16, 2024 · 3 comments

Comments

@WW-web-ctrl
Copy link

WW-web-ctrl commented Oct 16, 2024

Hello, I am trying to install Autodock Vina on a Linux system, but I don't have root privileges, so I cannot perform a source code installation. Is there a command to install Autodock Vina via conda on Linux?

@WW-web-ctrl WW-web-ctrl reopened this Oct 16, 2024
@WW-web-ctrl WW-web-ctrl changed the title 请问有没有在 请问有没有在linux系统中conda安装的命令 Oct 16, 2024
@WW-web-ctrl WW-web-ctrl changed the title 请问有没有在linux系统中conda安装的命令 Is there any command for installing conda in linux system Oct 16, 2024
@diogomart
Copy link
Member

I recommend mamba or micromamba. Personally I prefer micromamba.
https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html

But also, you don't need root privileges to install from source.

@diogomart
Copy link
Member

Then, micromamba install vina

@rwxayheee
Copy link
Collaborator

rwxayheee commented Oct 16, 2024

Hi @WW-web-ctrl
I agree with @diogomart. The installation shouldn't require root access if the prefix is set to a directory you own.

To make from source:

./configure --prefix<path to your dir>
make

(or PREFIX=<path to your dir> make)

Otherwise make might install executables at the default prefix location, which will be accessible but may not be writable system-wide. Thus, this might require root access

If you go with conda/mamba/micromamba, to make sure that the environment is created in a directory you own you can do:

conda/mamba/micromamba create --prefix <path to your dir>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants