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

Voltrron7 fixes #2620

Merged
merged 3 commits into from
Feb 23, 2021
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
10 changes: 6 additions & 4 deletions docs/source/setup/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ Steps for ZMQ
::

cd <volttron clone directory>
python bootstrap.py
# VOLTTRON 7 requires web packages by default so include --web
python3 bootstrap.py --web
source env/bin/activate

Proceed to `Testing the Installation`_.
Expand Down Expand Up @@ -120,14 +121,15 @@ Steps for RabbitMQ

cd volttron

# bootstrap.py --help will show you all of the "package options" such as
# python3 bootstrap.py --help will show you all of the "package options" such as
# installing required packages for volttron central or the platform agent.
# In VOLTTRON 7 web packages are required so include --web in addition to --rabbitmq

python bootstrap.py --rabbitmq [optional install directory defaults to
python bootstrap.py --web --rabbitmq [optional install directory defaults to
<user_home>/rabbitmq_server]

.. note:: If your PYTHON_PATH is configured for Python 2.7, you'll need to use
``python3 bootstrap.py ..``
``python3 bootstrap.py`` instead of ``python bootstrap.py``

This will build the platform and create a virtual Python environment and
dependencies for RabbitMQ. It also installs RabbitMQ server as the current user.
Expand Down
2 changes: 2 additions & 0 deletions requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
install_requires = [
'gevent==20.6.1',
'grequests',
'greenlet==0.4.16',
'idna<3,>=2.5',
'requests==2.23.0',
'ply',
'psutil',
Expand Down