Fixed typos [Skip CI]
This commit is contained in:
parent
af33450835
commit
45465b246f
@ -23,15 +23,18 @@ Although most dependencies (except Python) can be found in the windows-dependenc
|
||||
#### Dependencies that must be installed using pip
|
||||
|
||||
Python installs a tool called Pip that allows to install packages in a simple way. You can find it in the python scripts directory. To install packages using Pip, you have to navigate to the scripts directory using a command prompt, for example:
|
||||
cd C:\python37\scripts
|
||||
cd C:\python37\scripts
|
||||
|
||||
You can also add the scripts folder to your path environment variable or choose the corresponding option when installing Python.
|
||||
Pip is able to install packages listed in a special text file, called the requirements file. To install all remaining dependencies, perform the following command:
|
||||
pip install -r requirements.txt
|
||||
pip install -r requirements.txt
|
||||
Note that if you perform the command from the path where Pip is located, you need to specify the path to your Socializer root folder where the requirements file is located, for example:
|
||||
pip install -r D:\repos\socializer\requirements.txt
|
||||
pip install -r D:\repos\socializer\requirements.txt
|
||||
|
||||
Pip will automatically get the additional libraries that the listed packages need to work properly.
|
||||
|
||||
If you need to update your dependencies, perform the following command:
|
||||
|
||||
pip install --upgrade -r requirements.txt
|
||||
|
||||
#### Other dependencies
|
||||
|
Loading…
Reference in New Issue
Block a user