Python 2 conda env
Run the following to create a conda environment with Python 2 to run older scripts:
conda create -n python2 python=2
conda activate python2
pip install git+https://github.com/SeedlingsBabylab/pyclan.git
You can then run python <script_name> <arguments>
. In a new terminal, you will have to activate the environment again:
conda activate python2
Last updated