Skip to content

Commit d3338ab

Browse files
Guillaume Sedarith chhorGuillaume Sedarith chhor
Guillaume Sedarith chhor
authored and
Guillaume Sedarith chhor
committed
fix bugs
1 parent 48d3bc2 commit d3338ab

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

guides/conda.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
echo “”> c:\Anaconda3\.nonadmin
99
```
1010
- Create the environment named ‘environment_name’
11+
1112
```bash
1213
conda create -n environment_name
1314
```
1415

1516
## Activate environment
17+
1618
```bash
1719
activate environment_name
1820
```

resources/python.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
- [How to think like a Pythonist](http://python.net/crew/mwh/hacks/objectthink.html#question)
2626
- [Namespaces and variable scopes](http://nbviewer.jupyter.org/github/rasbt/python_reference/blob/master/tutorials/scope_resolution_legb_rule.ipynb)
2727
- [A collection of not-so-obvious Python stuff you should know!](http://nbviewer.jupyter.org/github/rasbt/python_reference/blob/master/tutorials/not_so_obvious_python_stuff.ipynb)
28-
- [Magic methods](https://github.com/RafeKettler/magicmethods/blob/master/magicmethods.markdown) (function between double underscore, ex: . __str__)
29-
- [What are the “best practices” for using import in a module?](https://docs.python.org/3/faq/programming.html#what-are-the-best-practices-for-using-import-in-a-module) And those links ([A](http://softwareengineering.stackexchange.com/questions/187403/import-module-vs-from-module-import-function/187471) y [B](http://effbot.org/zone/import-confusion.htm)) for those who want further details
28+
- [Magic methods](https://github.com/RafeKettler/magicmethods/blob/master/magicmethods.markdown) (function between double underscore, ex: .\_\_str\_\_)
29+
- [What are the “best practices” for using import in a module?](https://docs.python.org/3/faq/programming.html#what-are-the-best-practices-for-using-import-in-a-module) And those links ([A](http://softwareengineering.stackexchange.com/questions/187403/import-module-vs-from-module-import-function/187471) and [B](http://effbot.org/zone/import-confusion.htm)) for those who want further details
3030
- [setup.py vs. requirements.txt](https://caremad.io/posts/2013/07/setup-vs-requirement/)
3131

3232
## Definitive guides to specific topics:

0 commit comments

Comments
 (0)