-
Notifications
You must be signed in to change notification settings - Fork 8
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
Require 2 python versions? #1
Comments
You are right, I tried to reproduce and found this issue as well. It's a conflict caused by |
Hi, Is there any update or workaround available to address this version conflict between langchain and the other dependencies (such as Thanks! |
I believe in 99% scenarios you do not need to generate the code and run the ManiSkill2 environment at the same time. So one workaround may be that you can use two different conda envs for the code generation part and the RL part. |
I am setting up the environment.
What I found is that in the setup tutorial, you have
conda create -n text2reward python=3.7
However, langchain which is used in
text2reward/code_generation/single_flow/*/generation.py
requires 3.8.installing with 3.7
If I am installing langchain with 3.7. It will not install
langchain.chat_models
andlangchain.callbacks.manager
and making the code-generation no runnable.installing with 3.8
This will make the following part not runnable (Using python3.7 doesn't have this issue)
For the above install, I will get
I try to fix
error in gym setup command: 'extras_require' must be a dictionary whose values are strings or lists of strings containing valid project/version requirement specifiers.
. But following here doesn't make things working.The text was updated successfully, but these errors were encountered: