Why VSCode is opened? #226
-
When I run It open |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is almost certainly due to the settings on your computer. When you installed VSCode, you likely instructed it to open Python files, and it changed the settings such that it takes priority in opening those files, rather than having the python scripts be executed with the Conda-installed python which normally should be used to run RFdiffusion scripts. You'll have to investigate the VSCode settings on you machine to tell it not to open Python file when you put them on the command line to run. (Consult VSCode documentation and help forums for details.) You also want to make sure your Conda is installed properly and properly activated such that the Conda environment you created when installing RFdiffusion will be used when you launched the run_inference.py script. |
Beta Was this translation helpful? Give feedback.
This is almost certainly due to the settings on your computer. When you installed VSCode, you likely instructed it to open Python files, and it changed the settings such that it takes priority in opening those files, rather than having the python scripts be executed with the Conda-installed python which normally should be used to run RFdiffusion scripts.
You'll have to investigate the VSCode settings on you machine to tell it not to open Python file when you put them on the command line to run. (Consult VSCode documentation and help forums for details.)
You also want to make sure your Conda is installed properly and properly activated such that the Conda environment you created when insta…