diff --git a/README_en.md b/README_en.md index 10df7ab8..51f76d7c 100644 --- a/README_en.md +++ b/README_en.md @@ -46,7 +46,7 @@ More detailed description of the [algorithms and methods](https://rostok.readthe To modify the modules of the Rostok framework a user should install it in development mode: * Create the environment using `conda env create -f environment.yml` -* Activate the environment `rostok` +* Activate the environment `conda activate rostok` * Install the package in development mode `pip3 install -e .` ### Known issues diff --git a/docs/source/conf.py b/docs/source/conf.py index a31b6dc9..5626479a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,8 +13,9 @@ from pathlib import Path sys.path.insert(0, os.path.abspath('.')) -sys.path.insert(0, str(Path(__file__).parent / '../../')) -sys.path.insert(0, str(Path(__file__).parent / '../../rostok')) +sys.path.insert(0, os.path.abspath('../../')) +sys.path.insert(0, os.path.abspath('../')) +sys.path.insert(0, os.path.abspath('../../rostok')) #The master toctree document master_doc = 'index' diff --git a/docs/source/readme.rst b/docs/source/readme.rst new file mode 100644 index 00000000..451f9f3b --- /dev/null +++ b/docs/source/readme.rst @@ -0,0 +1,7 @@ +======= +Read Me +======= + + +.. mdinclude:: ../../README_en.md + :literal: \ No newline at end of file