-
Got this error one homepage
tried to do the download and install ~/* like here
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
That doesn't work: it installs the package outside the venv, as you'll see in the next few lines:
Solution 1: sudo to a root shell first, then activate venv.
Solution 2 (better): add the package(s) you want to |
Beta Was this translation helpful? Give feedback.
-
Where would i find the local_Requirements.txt and also what information do i add to it? |
Beta Was this translation helpful? Give feedback.
That doesn't work: it installs the package outside the venv, as you'll see in the next few lines:
Solution 1: sudo to a root shell first, then activate venv.
Solution 2 (better): add the package(s) you want to
local_requirements.txt
, and then run./upgrade.sh
as if upgrading. It will build a new venv, including your extra packages. And it will remember that this must be done when you upgrade Netbox in future.