Skip to content

DevNotes_CondaDevEnviroment

Wojciech Potrzebowski edited this page Jun 10, 2022 · 29 revisions

Example for setting up developers enviroment using pip from conda envioremnt.
Note 1: This assumes that you have already installed anaconda
Note 2: All commands should be executed from terminal

Setup conda enviroment:

conda create -n sasview_dev python=3.9

Activate enviroment

conda activate sasview_dev

Install dependencies:

pip install -r build_tools/requirements.txt

Clone this wiki locally