Skip to content

Commit

Permalink
path
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumiracle committed May 2, 2020
1 parent 585f990 commit 5099665
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
#
import os
import sys
# sys.path.insert(0, os.path.relpath('../'))
# sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
# sys.path.insert(0, os.path.join(
# os.path.dirname(os.path.dirname(os.path.realpath(__file__))), '/rlzoo'))
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
sys.path.insert(0, os.path.join(
os.path.dirname(os.path.dirname(os.path.realpath(__file__))), '/rlzoo'))
sys.path.insert(0, os.path.relpath("../"))
sys.path.insert(0, os.path.abspath("../"))
sys.path.insert(0, os.path.relpath("../rlzoo"))
sys.path.insert(0, os.path.abspath("../rlzoo"))

# from rlzoo.algorithms import *
import sphinx_rtd_theme
Expand Down
6 changes: 1 addition & 5 deletions docs/guide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Open ``./run_rlzoo.py``:
from rlzoo.common.env_wrappers import build_env
from rlzoo.common.utils import call_default_params
from rlzoo.algorithms import *
from rlzoo.algorithms import TD3
# choose an algorithm
AlgName = 'TD3'
# chose an environment
Expand All @@ -29,11 +29,7 @@ Open ``./run_rlzoo.py``:
Run the example:

<<<<<<< HEAD
.. code-block:: python
=======
.. code-block:: bash
>>>>>>> 9a1810d76a2ce9202797b376d0ee919296330cc8
:linenos:
python run_rlzoo.py

0 comments on commit 5099665

Please sign in to comment.