-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check your Installation error #41
Comments
Was there any additional traceback information above that traceback? The error from |
I ran the command below, the full traceback information is below. (spinningup) karthik@karthik-VirtualBox:~/spinningup$ python -m spinup.run ppo --hid "[32,32]" --env LunarLander-v2 --exp_name installtest --gamma 0.999_ExperimentGrid [installtest] runs over parameters: gamma [gam]
env_name [env]
ac_kwargs:hidden_sizes [ac-hid]
Variants, counting seeds: 1 ================================================================================ Preparing to run the following experiments... installtest ================================================================================ Launch delayed to give you a few seconds to review your experiments. To customize or disable this behavior, change WAIT_BEFORE_LAUNCH in ================================================================================ installtest with kwargs: { Traceback (most recent call last): ================================================================================ There appears to have been an error in your experiment. Check the traceback above to see what actually went wrong. The ================================================================================ Traceback (most recent call last): |
It looks like what's happening is that you have more than one version of Python installed, and it's using the right version of Python when you launch |
I encountered the same issue as mentioned by karthikraja95 on miniconda 3.6.7 (Ubuntu 16.04). I perform the following steps to resolve the error message and missing packages, which failed during earlier pip install process:
The test installation script successfully completed and I was also able to playback the video. For reproducibility purposes, I have uploaded a copy of my environment for your reference |
I do not know whether my answer is still useful or not. I also have the same issue as yours @karthikraja95. I have followed strictly the python version and all packages versions in the Spinning Up documentation. I agree with the author's reply (@jachiam) that it might be a conflict between two versions of python. In my case I have two different python (3.8 and 3.6). Python 3.8 is in the python3.6 -m spinup.run ppo --hid "[32,32]" --env LunarLander-v2 --exp_name installtest --gamma 0.999 And then it works perfectly like a magic. Another way to resolve it by create an alias of |
I am getting this error. my python version is 3.6.6.
As mentioned in the installation error #13
I downloaded the python 3.7 version and downgraded using conda install python=3.6
Originally posted by @karthikraja95 in #13 (comment)
The text was updated successfully, but these errors were encountered: