basic

$ conda create --name app35 python=3.5
$ source activate app35

$ pip list

$ source deactivate
$ conda env list
$ conda list -n snowflakes
$ conda install --name bunnies beautiful-soup // beautiful-soup = package

Chemical SUIT

$ conda create --name dl3 python=3.5

$ source activate dl3
$ pip install jupyter numpy sqlalchemy pandas tqdm sqlalchemy_utils psycopg2

$ conda install -c rdkit rdkit
$ conda install -c openbabel openbabel // maybe repeat twice to successfully install!!!

$ pip install grpcio
$ pip install grpcio-tools googleapis-common-protos


// let notebook to use specific env
$ conda install nb_conda
$ git clone https://github.com/ipython/ipykernel.git
$ cd ipykernel
$ pip install -e .
$ python -m ipykernel install --user --name nlp3 --display-name "Python (nlp3)"

OpenCV

Import / Export

Ipython Notebook using env

PCL

Sqlalchemy

RDkit

Tensorflow

https://www.tensorflow.org/install/install_linux#InstallingNativePip

Remove Env

Last updated

Was this helpful?