Run these instructions immediately after creating your project with cookiecutter.
-
Navigate to the directory you created:
cd nlp_course
-
Create a virtual environment for your development:
conda env create -f environment.yml conda activate nlp_course
-
(optional) Install the
gh
app to automatically create your repository on GitHub:conda install gh --channel conda-forge gh auth login
-
Install your module in editable mode:
pip install -e .
-
Verify that the command-line tool is working:
nlp_course-cli --help
In the root folder of your newly created project:
git init
git add *
git commit -m "Initial commit"
gh repo create nlp_course --public --push --source .
-
In your browser, go to GitHub and log in as tiagoft.
-
Create a new repository (empty, without an initial README, gitignore, etc.) called nlp_course (be mindful of capitalization, etc.).
-
Run the commands below in the root folder of your newly created project:
git init git add * git commit -m "Initial commit" git remote add origin https://github.com/tiagoft/nlp_course.git git push --set-upstream origin main