Open WW-web-ctrl opened 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.
Then, micromamba install vina
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>
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?