ccsb-scripps / AutoDock-Vina

AutoDock Vina
http://vina.scripps.edu
Apache License 2.0
617 stars 210 forks source link

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

Open WW-web-ctrl opened 1 month ago

WW-web-ctrl commented 1 month ago

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?

diogomart commented 1 month ago

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 commented 1 month ago

Then, micromamba install vina

rwxayheee commented 1 month ago

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>