--
You received this message because you are subscribed to the Google Groups "VPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vpython-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to vpython-user...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to vpython-user...@googlegroups.com.
$ conda install -c mwcraig vpython
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- blaze
- vpython
Use "conda info <package>" to see the dependencies for each package.To unsubscribe from this group and stop receiving emails from it, send an email to vpython-user...@googlegroups.com.
Did you follow the Aaron's suggestion to "If you want to use VPython classic, I suggest setting up a conda environment for Python 2.7."type the commandconda info -e
to list the conda environments on your computer. A conda environment is a sandbox into which you can install the python packages that you are interested in using.
Vpython does not use blaze so to create an environment with the name "py27" for python 2.7 which contains just the classic vpython package and its dependencies you can do the following.conda create -n py27 python=2.7
Then once this installs, follow the instructions to activate the environment. e.g. for Windows machine use the commandactivate py27
Then install vpython in this environment as per Aaron's instructions.conda install -c mwcraig vpython
You can also install any other python packages that you might need for this conda environment.conda install packagenameThen you can use the built in python editor "idle" to create and run classic vpython programs.
I haven't used TextMate or XCode so I don't know how to configure them to use this environment to compile vpython code.When you are finished using this py27 conda environment you can exit it with the command.deactivateJust remember to activate the environment again when you wish to run vpython.