EOS ERROR: Linking /usr/local/Cellar/python/3.6.5… Error: Permission denied @ dir_s_mkdir – /usr/local/Frameworks
admin | EOS | 2018-05-17
需要执行以下命令
Shell
sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
12
sudo mkdir /usr/local/Frameworkssudo chown $(whoami):admin /usr/local/Frameworks
[阅读全文]
EOS ERROR:’stdint.h’ file not found when running the example of smart contract “Hello World”
admin | EOS | 2018-05-17
需要执行以下命令
Shell
cd ~/eos/build
sudo make install
12
cd ~/eos/buildsudo make install
参考链接https://github.com/EOSIO/eos/issues/1718
[阅读全文]
EOS ERROR: Could not find a package configuration file provided by “LLVM” (requested version 4.0) with any of the following names
admin | EOS | 2018-05-17
需要执行以下命令(检查一下你有没有这个目录,没有的话搜索一下)
Shell
export LLVM_DIR=/usr/local/Cellar/llvm\@4/4.0.1/lib/cmake
1
export LLVM_DIR=/usr/local/Cellar/llvm\@4/4.0.1/lib/cmake
参考链接https://github.com/EOSIO/eos/issues/43
[阅读全文]
EOS ERROR: Failed to find Gettext libintl (missing: Intl_INCLUDE_DIR)
admin | EOS | 2018-05-17
执行 eosio_build.sh
ERROR: Failed to find Gettext libintl (missing: Intl_INCLUDE_DIR)需要执行以下命令
Shell
brew unlink gettext && brew link --force gettext
find /usr -name libintl* -print 2>/dev/null
12
brew unlink gettext && brew link --force get... [阅读全文]
eos fatal: destination path ‘llvm’ already exists and is not an empty directory
admin | 区块链 | 2018-04-17
error log
Shell
Checking for LLVM with WASM support.
Installing LLVM & WASM
fatal: destination path 'llvm' already exists and is not an empty directory.
Unable to clone llvm repo @ https://github.com/llvm-mirror/llvm.git.
Exiting now.
12345
... [阅读全文]
两个工具帮你实现酷炫的数据可视化
admin | html | 2018-04-17
你想到的数据可视化,通常可能是这样的:
但我们能实现的数据可视化,不仅是上面那样的,还可以是这样的:
这样的:
以及这样的:
如此高端大气酷炫的数据可视化是如何实现的?
秘诀在于两个工具——inMap & iView
(都是开源项目,下载代码即可使用,完全免费!)
inMap
inMap是TalkingData可视化团队开源的一款基于 Canvas 的大数据可视化库,... [阅读全文]
GitLab修改root用户密码
admin | git | 2018-04-17
GitLab是一个私有的Git仓库,具有较好的项目管理和用户管理能力。
对于普通用户而言,通过系统的重置密码,接受邮件即可解决,可是GitLab的管理员账号,缺省的邮箱是一个不存在的邮箱地址,所以没有办法通过邮箱来复位。
通过在服务器上,可以修改用户的密码:
官方修改密码:(http://docs.gitlab.com/ce/security/reset_root_password.html)
不过,笔... [阅读全文]