有人知道是否可以在Digital Ocean的一键式django应用程序上运行django 2.0吗?
我的项目在2.0中,一键运行1.11。我尝试过
componentDidMount() {
socket.emit('joinRoom', 'Child')
socket.on('changeStatus', this.onChangeStatus);
socket.on('connect', this.onConnect);
}
onChangeStatus(data) {
...
}
onConnect() {
socket.emit('joinRoom', 'Child')
}
componentWillUnmount() {
socket.emit('leaveRoom', 'Child')
socket.off('changeStatus', this.onChangeStatus);
socket.off('connect', this.onConnect);
// instead of:
// socket.off('changeStatus')
// socket.off('connect')
}
sudo apt install python3-pip -y
pip3 install django
现在我的页面上出现ln -s /usr/bin/pip3 /usr/bin/p
错误。
我知道从头开始设置服务器的选项(我可能最终会这样做),我只是想知道是否有人成功运行了2.0 +?