https://github.com/hungrybluedev/uniform-general-case
Contains code and data that supplements the paper.
https://github.com/hungrybluedev/uniform-general-case
Last synced: about 1 year ago
JSON representation
Contains code and data that supplements the paper.
- Host: GitHub
- URL: https://github.com/hungrybluedev/uniform-general-case
- Owner: hungrybluedev
- License: mit
- Created: 2021-02-11T06:55:40.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-18T20:10:47.000Z (over 3 years ago)
- Last Synced: 2025-02-14T18:36:25.514Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 14.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prerequisites
1. Git - 2.27 or higher
2. Python - 3.8 or higher
3. Pip (should be included with Python 3 by default)
Install the `virtualenv` package from pip and make sure it is available globally from the command-line.
# Initialization
```bash
# Navigate to a suitable directory
cd path/to/directory
# Obtain the source code from Github
git clone https://github.com/hungrybluedev/uniform-general-case.git
# Create a virtual environment
virtualenv venv
# Activate the environment
# 1. For Windows (powershell recommended)
venv/Scripts/activate
# 2. For Linux/MacOS
. venv/bin/activate
# Install all dependencies
pip install -r requirements.txt
```
# Regular Usage
When starting a new session, remember to activate the virtual environment as shown in the previous step (using the activate script). Then type `jupyter notebook`. A new browser tab should open containing your notebook.
# More Information
Detailed instructions can be found on this page: [Setting up Jupyter](https://hungrybluedev.in/article/setting-up-jupyter/).
In case of any doubts, contact me through the channels mentioned in this page: [Contact Me](https://hungrybluedev.in/contact/)