-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Nick Ren edited this page Mar 15, 2024
·
9 revisions
Welcome to the actio_python_utils wiki!
- Navigate to the Directory:
cd actio_python_utils
- Create a New Conda Environment:
conda create -n actio_python_utils python=3.11 openjdk=8
- Activate the Conda Environment:
conda activate actio_python_utils
- Install Required Packages:
pip install -r requirements.txt
- Run the Tests:
python -m unittest tests.test_db_connection
- Navigate to Your Project's Directory:
cd your_project_directory
- Install
actio_python_utils
via Git:
pip install git+https://github.com/ActioBio/actio_python_utils.git
- Navigate to the Directory:
cd actio_python_utils
- Build the Sphinx Documentation
# change to the sphinx directory
cd sphinx
# run the Sphinx build command to generate the HTML output
make html
# after the build completes, navigate back to the project root directory
cd ..
- Copy the Generated HTML to the docs Directory
cp -r sphinx/_build/html/* docs/
- Commit and Push Changes to GitHub
git add sphinx/ docs/
git commit -m "Update documentation and deploy to GitHub Pages"
git push origin main