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

Dev/docs #110

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions docs/source/getting_started/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Check `here <https://docs.anaconda.com/anaconda/install/linux>`_ for Anaconda in
conda activate ENVNAME


Install Flightmare
Clone Flightmare
^^^^^^^^^^^^^^^^^^

Clone the project to your desktop (or any other directory)
Expand Down Expand Up @@ -86,7 +86,8 @@ Install dependencies

conda activate ENVNAME
cd flightmare/
pip install -r requirements.txt
# install tensorflow GPU (for non-gpu user, use pip install tensorflow==1.14)
pip install tensorflow-gpu==1.14


### Install Flighmare (flightlib)
Expand Down
3 changes: 2 additions & 1 deletion flightrl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
long_description='',
install_requires=['gym==0.11', 'ruamel.yaml',
'numpy', 'stable_baselines==2.10.1'],
packages=['rpg_baselines'],
packages=[package for package in find_packages()
if package.startswith('rpg_baselines')],
)