#Get Pycord with Linux APT

1 messages · Page 1 of 1 (latest)

summer stratus
#

My server uses an externally managed (linux apt) Python instance, is it possible to install Pycord without PyPI/pip?

river escarp
#

technically you could clone the repository

#

ideally you should be able to make a venv with python and install stuff there

violet basin
#

.tag venv

oblique fernBOT
#

Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library (as of Python 3.3) comes with a concept called "Virtual Environment"s to help maintain these separate versions.
The main benefit is to avoid package conflicts and unnecessary packages

Read more in the guide