开发环境配置
sunnylive863
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
pipenv install 报错
TypeError: 'module' object is not callable 使用方法: pipenv install # 默认为该目录创建一个python虚拟环境 位于 用户名.local/share/virtualenvs/项目目录名-随机字符串 # 提供可选参数 --two/--three 分别为python2,3 也可以 --python 3.6 指定一个版本号 ...原创 2018-10-08 12:46:09 · 12451 阅读 · 0 评论 -
RuntimeError: Python is not installed as a framework. Mac下使用Matplotlib报错
使用为python环境导致的 使用虚拟环境以别导入matplotlib中的内容会报错 需要先导入再设置一下 import matplotlib matplotlib.use('TkAgg') from matplotlib import pyplot as plt 或是添加设置到文件中 vi ~/.matplotlib/matplotlibrc backend: TkAgg 官...原创 2018-11-11 11:20:31 · 422 阅读 · 0 评论 -
给其他人的github项目提交pull request
fork那个项目 然后在自己fork好的项目上 use ssh 的方式 clone 到本地开发环境中 修改代码 git add -A git commit -m "some change" 然后回到自己fork好的项目页面 clone or download 左下方有个 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181120202054337.p...原创 2018-11-20 20:22:20 · 1012 阅读 · 0 评论 -
bundle install There was an error while trying to write to
bundle install There was an error while trying to write to /Users/user_name/.bundle/cache/compact_index/rubygems.org.443.29b0360b937aa4d161703e6160654e47/versions. It is likely that you need to grant ...原创 2018-11-18 10:34:11 · 2492 阅读 · 0 评论
分享