Skip to content

Commit 5099665

Browse files
committed
path
1 parent 585f990 commit 5099665

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
#
1313
import os
1414
import sys
15-
# sys.path.insert(0, os.path.relpath('../'))
16-
# sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
17-
# sys.path.insert(0, os.path.join(
18-
# os.path.dirname(os.path.dirname(os.path.realpath(__file__))), '/rlzoo'))
15+
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
16+
sys.path.insert(0, os.path.join(
17+
os.path.dirname(os.path.dirname(os.path.realpath(__file__))), '/rlzoo'))
1918
sys.path.insert(0, os.path.relpath("../"))
2019
sys.path.insert(0, os.path.abspath("../"))
2120
sys.path.insert(0, os.path.relpath("../rlzoo"))
21+
sys.path.insert(0, os.path.abspath("../rlzoo"))
2222

2323
# from rlzoo.algorithms import *
2424
import sphinx_rtd_theme

docs/guide/quickstart.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Open ``./run_rlzoo.py``:
88
99
from rlzoo.common.env_wrappers import build_env
1010
from rlzoo.common.utils import call_default_params
11-
from rlzoo.algorithms import *
11+
from rlzoo.algorithms import TD3
1212
# choose an algorithm
1313
AlgName = 'TD3'
1414
# chose an environment
@@ -29,11 +29,7 @@ Open ``./run_rlzoo.py``:
2929
3030
Run the example:
3131

32-
<<<<<<< HEAD
33-
.. code-block:: python
34-
=======
3532
.. code-block:: bash
36-
>>>>>>> 9a1810d76a2ce9202797b376d0ee919296330cc8
3733
:linenos:
3834
3935
python run_rlzoo.py

0 commit comments

Comments
 (0)