Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slovnicki/matematicki-softver
homeworks and projects for Mathematical Software course
https://github.com/slovnicki/matematicki-softver
ipython jupyter latex markdown mathplotlib numpy pandas scikit sympy
Last synced: about 1 month ago
JSON representation
homeworks and projects for Mathematical Software course
- Host: GitHub
- URL: https://github.com/slovnicki/matematicki-softver
- Owner: slovnicki
- Created: 2018-03-26T18:04:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-23T17:25:20.000Z (over 6 years ago)
- Last Synced: 2024-10-20T03:09:21.269Z (3 months ago)
- Topics: ipython, jupyter, latex, markdown, mathplotlib, numpy, pandas, scikit, sympy
- Language: Jupyter Notebook
- Homepage:
- Size: 858 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Matematički Softver
This is a repository of homeworks and projects for Mathematical Software, a course at
University of Zagreb, Faculty of Science, Department of Mathematics (Graduate Programme: Computer Science and Mathematics)
---
## How to run Jupyter Notebooks?
Jupyter Notebooks use Python3.6, are shown in your web-browser at localhost and can be run with Anaconda. You'll need to set those up on your machine.
The following steps will lead you in installing anaconda3, setting up python virtual environment and running notebooks.
**NOTE:** Python3.6 is also required and steps bellow will not cover its setup.#### Installing Anaconda3
You can download it and read more about at https://www.anaconda.com/download/. After you installed anaconda3, you have everything needed to run jupyter notebooks.You might need to export anaconda's path with following command in your terminal:
```
export PATH=/bin:$PATH
```#### Creating Python3.6 virtual environment
First we need to create a Python3.6 virtual environment and call it, let say py36env. Once created, py36env exists on your system so you don't have to create it again if you already have done this step (or have an existing python3.6 environment ready to use).
```
conda create -n py36env python=3.6 anaconda
```#### Running Notebooks
- Again, you might need to export anaconda's path with following command in your terminal:
```
export PATH=/bin:$PATH
```
- Now we activate our python3.6 virtual environment:
```
source activate py36env
```
- And lastly run our jupyter notebook:
_**NOTE:** In case you already are in the directory where your notebooks are (or just don't care), you don't need to pass the --notebook-dir parameter. Also, port value is arbitrary._
```
jupyter notebook --notebook-dir= --port=12345
```