Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use 'pip install' instead of 'python setup.py' #187

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,7 @@ You can then checkout the Tunneldigger repository into ``/srv/tunneldigger/tunne
Next you have to enter the environment and install the broker alongside its dependencies::

source env_tunneldigger/bin/activate
cd tunneldigger/broker
python setup.py install
pip install tunneldigger/broker

Configuration
-------------
Expand Down
3 changes: 1 addition & 2 deletions tests/prepare_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ fi

. /srv/env_tunneldigger/bin/activate
if [ -f /srv/tunneldigger/broker/setup.py ]; then
cd /srv/tunneldigger/broker
python setup.py install
pip install /srv/tunneldigger/broker
else
pip install -r /srv/tunneldigger/broker/requirements.txt
fi
Expand Down