User Tools

Site Tools


script:python

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
script:python [2020/11/25 16:35] – [Other commands of conda] adminscript:python [2023/11/28 09:35] (current) – [The try-except clause] admin
Line 210: Line 210:
 </code> </code>
 === Create virtual environment for zipline app and using it === === Create virtual environment for zipline app and using it ===
-We will install **zipline** which requirement package **numpy**:+We will install **zipline** which requirement package **numpy** (Because we can found **numpy** in packages of conda on **https://anaconda.org/anaconda/repo**):
   - Step1: Create new virtual environment with name **zipline** which contain package **numpy** in conda<code bat>   - Step1: Create new virtual environment with name **zipline** which contain package **numpy** in conda<code bat>
 conda create -n zipline numpy conda create -n zipline numpy
Line 223: Line 223:
   - Step3: Install zipline in environment:<code>   - Step3: Install zipline in environment:<code>
 conda install -c Quantopian zipline conda install -c Quantopian zipline
-</code>+</code> =>install package **zipline** from channel **Quantopian** on **https://anaconda.org/anaconda/repo**{{:script:screen_shot_2020-11-26_at_4.58.01_pm.png|}}
 === Other commands of conda === === Other commands of conda ===
   * List environments in conda<code bat>   * List environments in conda<code bat>
Line 1107: Line 1107:
 else: else:
    If there is no exception then execute this block.     If there is no exception then execute this block. 
 +</code><code python>
 +try:
 +   You do your operations here;
 +   ......................
 +except:
 +   If there is any exception, then execute this block.
 +   ......................
 </code> </code>
   * The except clause with multiple exceptions<code python>   * The except clause with multiple exceptions<code python>
script/python.1606322157.txt.gz · Last modified: 2022/10/29 16:15 (external edit)