Python Forum
Failure to run source command - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Failure to run source command (/thread-40770.html)



Failure to run source command - middlestudent - Sep-22-2023

Dear All,

I am a Python beginner. I followed the instruction in https://github.com/mkocabas/VIBE/tree/master to run python command.

Yet, I could not run the following commands:
# pip
source scripts/install_pip.sh

# conda
source scripts/install_conda.sh
May I know how to solve it? Many thanks. Yuan


RE: Failure to run source command - Pedroski55 - Sep-22-2023

There are a million webpages with information about Python.

For installing Python and pip you could look here first. pip comes with Python, but needs to be updated now and then. Pip will tell you when an updated version is available.

I think most webpages are in English, but search in Baidu for Chinese language webpages: 下载并安装Python


RE: Failure to run source command - buran - Sep-22-2023

souece is Linux bash shell command

https://stackoverflow.com/a/56161354/4046632

You can also look at the respective shell scripts and run the commands. They create virtual environment, activate it and install requirements