-
Workaround 1: Invoke the module via
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It is also possible to add the user-local To add the Python user-local
You should now be able to run Python scripts and commands from the Python user-local |
Beta Was this translation helpful? Give feedback.
It is also possible to add the user-local
Scripts
directory to thePATH
and use thereflex
executable that way, keeping in mind that the user-localScripts
directory may end up containing non-reproducible or incompatible dependencies that introduce weird issues. When in doubt, always try in a fresh virtualenv.To add the Python user-local
Scripts
directory to your PATH on Windows, follow these steps:Find the User
Scripts
Directory:The user-local
Scripts
directory is typically located in a folder associated with your user profile. It follows this format:C:\Users\<YourUsername>\AppData\Roaming\Python\Python<Version>\Scripts
. Replace<YourUsername>
with your actual Windows username and<…