其他
Aimee芊
沉迷于代码ing...
展开
-
mac更新后git不可用
更新后报错错误提示如下:dyld: Library not loaded: @rpath/libswiftCore.dylib Referenced from: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild Reason: image not foundgit: error: unable to locat...原创 2019-12-10 16:22:09 · 448 阅读 · 1 评论 -
zsh: command not found:nodemon
nodemon 安装 mac提示 zsh: command not found: nodemon安装nodemonnpm install -g nodemon提示安装成功查看版本却提示zsh: command not found: nodemon主要是原因是环境变量没有设置对的原因根据安装的提示路径:/usr/local/Cellar/node/11.13.0/bin/nodemo...原创 2019-12-04 17:50:38 · 3990 阅读 · 1 评论 -
云服务器配置和域名配置
之前在阿里云上买了域名和云服务器,挂放博客和常的小项目,买的最低配的,但是内存太小,另外买了一个硬盘。我所使用的是windows系统的,方便快捷操作。远程桌面连接 windows自带的远程桌面连接功能,打开程序,输入云服务器的ip地址,点击链接,并根据提示框输入密码,即可访问到远程服务器 进入远程服务器,安装相应的软件,我安装了几个常用的软件原创 2018-03-13 10:39:02 · 7373 阅读 · 2 评论 -
Git clone The requested URL returned error: 403 错误
错误提示:remote: Coding.net Tips : [You have no permission to access this repo.] fatal: unable to access ‘https://git.coding.net/xxxxxxxx/xxxx.git/‘: The requested URL returned error: 403错误原因:git...原创 2018-07-14 11:03:28 · 12573 阅读 · 0 评论 -
vue eslint开发 关掉 tab错误提示
团队开发中经常遇到需要使用eslint 语法纠正的情况; 但是 tab 和 space 提示真的很头疼,可以通过下面方式解决 找到vue 项目中的 .eslintrc.js , 在rules 中 添加 ‘no-tabs’: 0, ‘no-mixed-spaces-and-tabs’: 0, ‘indent’: [“off”, “tab”], ...原创 2018-07-14 16:59:29 · 6894 阅读 · 2 评论