This repository is a part of Natural Language Processing course at the University of Ljubljana, Faculty for computer and information science. Please contact slavko.zitnik@fri.uni-lj.si or ales.zagar@fri.uni-lj.si for any comments.
** NOTE: Project setup is being updated weekly in the summer semester 2024/25. **
- Build image
docker buildx build \
--platform linux/amd64 \
-t nlp-course-fri \
./docker_environment
- Run container
docker run --platform linux/amd64 -it \
--mount type=bind,source=$(pwd),target=/jupyter-data \
-p 8888:8888 \
nlp-course-fri
- Navigate to http://localhost:8888 (password is 'Geslo.01') and enjoy!
Configuration tested on Mac M1 Max and Python 3.11.
Create environment, install libraries and run notebook server:
python -m venv ./venv
source ./venv/bin/activate
pip install -r- ./docker_environment/requirements.txt
jupyter notebook
Enjoy!