I have Python2.7, Python3.6 and Python3.7 on my Ubuntu 18.04 system. I want to install rdkit
in Python3.6 using apt-get install
.
The command to do that is:
sudo apt-get install python-rdkit librdkit1 rdkit-data
How do I know which python version this is getting installed in? (Without opening all my Pythons and checking)
How do I control which version this gets installed in?
This is a general question for packages that do not seem to be available via pip
.