Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] fix #3 - Use Anaconda on Windows #4

Merged
merged 1 commit into from
Apr 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 01_introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@ python3 -V
```
`Python 3.x.x`のような表示がされた場合,以下の操作は不要。`command not found`等は要インストール。

```powershell
Install-Package python
```
Windowsの場合は[公式](https://www.anaconda.com/)からインストーラをダウンロードして実行する。PATHを通すとはどういうことか分からなければ,とりあえずPATHを通すにチェックを入れる。

```bash
brew install python3
Expand Down Expand Up @@ -110,6 +108,8 @@ pipenv --version
#### Jupyter Notebookのインストール
本来は`pipenv install jupyter`などとするところであるが,第1部で使うパッケージの一覧を`Pipfile`に書いておいたので,これを用いて一気にインストールする。

TODO: Windows用手順は準備中です。

```bash
pipenv install --three
```
Expand Down