rabbitfoot530's diary

読んだ本と、プログラムに関することのメモです。好きな言語は、C++, Python, Golang, TypeScript。数学・物理・学習理論も好きです。

mac

ipython notebookインストール

matplotlibのグラフを出しながら、コーディングするのはnotebookが便利と知りましたので、notebookをインストール! virtualenvで環境作ってから、下記のパッケージをpipでインストールするだけ。 Pygments==1.6 distribute==0.6.27 ipython==0.13.2 pyzmq==…

Google Chromeのオプション起動

mac

/ApplicationsにAppleScript Editorで下記のコマンドを作成。 do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --allow-file-access-from-files --user-data-dir=/Users/nao/Library/Application\\ Support/Google/DevG…

opensslをビルドする設定

MacのXodeでopensslを使ったコードをビルドするには、下記の設定が必要。 Other Linker Flagsに-lcryptoを追加 CMakeでビルドするには、下記の設定が必要 SET(LIBS "-lcrypto") target_link_libraries(target ${LIBS})

ValueError: unknown locale: UTF-8

Terminal > Preferences... > Settings > AdvancedSet local environment variables on startup

MacのPythonのバージョンの変更方法

port selectってコマンドでできるみたい。 インストールされてるpythonリスト port select --list python 現在のpythonのバージョン port select --show python pythonのバージョン変更(python3.2に変更の例) sudo port select --set python python32