forked from siaen/python_finance_course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
49 lines (32 loc) · 1.46 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
=====================================================================
This repository contains the material for
Python finance course
delivered on site at CEU Budapest in the spring of 2018.
The main material is a series of jupyter notebooks.
=====================================================================
ENVIRONMENT:
In order to make the collaboration efficient I have created an environment generator file that contains the essential packages to be used. As Anaconda is somewhat difficult to use in Citi this requires a set of configuration files to be present.
Install:
Download and install Anaconda:
https://www.anaconda.com/download/
Run the following command in Anaconda Prompt (you can find in the start menu)
to create the conda environment:
c> conda create --name ceu_course --file env\conda_env.txt
c> activate ceu_course
c> pip install -r env\requirements.txt
Upgrade environment:
c> activate ceu_course
c> conda install --file env\conda_env.txt
c> pip install -r env\requirements.txt
Enable codefolding and table of contents:
c> jupyter contrib nbextension install --user
c> jupyter nbextensions_configurator enable --user
c> jupyter nbextension enable codefolding/main
c> jupyter nbextension enable toc2/main
Use:
Run the following command in Anaconda Prompt (you can find in the start menu)
to start a jupyter notebook:
activate environment:
c> activate ceu_course
start jupyter
c> jupyter notebook