嘗試在Linux中啓動Anaconda導航器。收到此錯誤:Anaconda-navigator:字節索引必須是整數或切片,而不是str
byte indices must be integers or slices, not str
嘗試在Linux中啓動Anaconda導航器。收到此錯誤:Anaconda-navigator:字節索引必須是整數或切片,而不是str
byte indices must be integers or slices, not str
找到了解決辦法
這是做什麼:
運行:$ source activate root
然後
$ anaconda-navigator
基於乍得富爾頓的答案2016年6月24日在issue 748,我做了以下更改。蟒蛇導航器能夠從發射器中運行。
剪切添加到〜/ .bashrc中的行,anaconda install爲path添加。
更新在底部以下的〜/ .profile文件路徑:
export PATH="$PATH:/home/<your_username_here>/anaconda3/bin:$PATH"
那麼你就必須註銷並登錄。
這應該解決這個問題。 Jupyter筆記本似乎也可以工作,但我沒有徹底測試它。
只需將'export PATH =〜/ anaconda3/bin:$ PATH'添加到〜/ .bashrc中即可。雖然我不需要註銷和登錄。 –