2018年12月8日 星期六

it worked

Traveler Station 終身保修服務

@hankray88
http://hankray88.com.tw/maintain/quick?s=y

matplotlib安裝https://morvanzhou.github.io/tutorials/data-manipulation/plt/1-2-install/

城中分館濟南路2段46號3樓
https://www.books.com.tw/products/CN11457933
Windows下Python2與Python3兩個版本共存的方法

https://tw.saowen.com/a/c0ffbb7e1b7e579ea2c8294e4abc962d0f65cbb1f0d69a28e94e77c62091af72


[官解]Windows上Python2和3如何兼容?
https://python.freelycode.com/contribution/detail/139

it worked,
Cmd1:
ng serve --prod --host 0.0.0.0 --disable-host-check. 

ex:$ng serve --prod --host 0.0.0.0 --disable-host-check 

and tried using ngrok with the following solution
Cmd2:
ngrok http {your port} -host-header="localhost:{your port}"

ex:$ngrok http 4200 -host-header="localhost:4200"


ssh -R stephen.serveo.net:80:localhost:4200 serveo.net

$ npm remove -g angular-cli
$npm cache verify
$npm install -g @angular/cli@latest

$npm install -g @angular/cli@1.0.0-beta.28.3

前言

一般情况下,macOS 是自带了一个 Python 环境的,一般是2.7,但编译 youcompleteMe 的时候发现需要pip。本来想基于自带的安装 pip,后来百度了一下发现使用 Homebrew 安装的 Python 都是已经安装好 pip 了。所以本文的方案不动自带的 python,使用 Homebrew 重新安装。

安装 Python2 和 Python3

直接运行
brew search python
结果如下:
其中 python 是 3.x 版本, python@2 是 2.x 版本。
运行
brew install python
brew install python@2
此时运行
brew info python
brew info python@2
可以查看这两个版本具体的安装信息。
图中两个箭头分别是 Homebrew 安装的python目录和映射到的目录。

替换系统默认 Python

这时运行 python 命令你会发现使用的还是系统默认的 python. 我们需要让系统优先读取 Homebrew 安装的 Python 路径。在 .zshrc 中 加入如下 代码
export PATH=/usr/local/bin:$PATH
这样输入 python 就是我们自己安装的 python 环境了。

使用Python3

默认情况下使用 Python3 方法是把 python 命令换成 python3。如果你感觉不方便,可以在 .zshrc 中加入如下代码
alias python="python3"
这样输入 python 就默认调用 python3 了。

MAC 安裝 python 3.6.5_1
brew install --ignore-dependencies https://raw.githubusercontent.com/Homebrew/homebrew-core/f2a764ef944b1080be64bd88dca9a1d80130c558/Formula/python.rb


目前 3.6 跟 3.7 只能擇一
brew upgrade python3 會昇級3.7最新版...目前是3.7.3 
#brew link --overwrite --dry-run python
#brew link --overwrite python
brew unlink python
#brew switch python 3.6.5_1

brew switch python 3.7.2_2


pip3 install --upgrade pip

沒有留言:

張貼留言