Loading...
执行以下命令行解决cd /Applications/Android\ Studio.app/Contents/jre ln -s ../jre jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk 然后再执行 flutter doctor。
参考 请输入链接描述
# 该Yaml文件改编自DockerHub中的配置文件 version: '3.8' services: mongo: image: mongo:4.4.0 #根据需要选择自己的镜像 restart: always ports: - 27017:27017 #对外暴露停供服务的端口,正式生产的时候理论不用暴露。 volumes: - /...
vi /etc/sysctl.conf net.ipv4.ip_forward = 1 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_tw_recycle = 1 vm.overcommit_memory = 1 sysctl -p ulimit -n 65536 ulimit -Sn 65536 vi /etc/security/limits.co...