Last active
December 18, 2019 17:48
-
-
Save s-weigand/1db8cb855e333b5a582493755cd142ca to your computer and use it in GitHub Desktop.
Create tox env on Windows with conda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import division, print_function | |
| for vers in [27,35,36,37,38]: | |
| print("conda create -p C:\python{} python={} -y".format(vers, vers/10)) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install commands for python on widows default dir for tox to find it
output:
conda create -p C:\python27 python=2.7 -y
conda create -p C:\python35 python=3.5 -y
conda create -p C:\python36 python=3.6 -y
conda create -p C:\python37 python=3.7 -y
conda create -p C:\python38 python=3.8 -y