ccsb-scripps / AutoDock-Vina

AutoDock Vina

Home Page:http://vina.scripps.edu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any command for installing conda in linux system

WW-web-ctrl opened this issue · comments

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?

commented

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.

commented

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>