compas-dev / compas-dev/compas_cloud

Cloud with console doesn't work on Mac

Open
#15 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
6
Forks
2
PR merge metrics
No merged PRs in 30d

Description

```python
if self.background:
print("Starting new cloud server in background at {}:{}".format(self.host, self.port))
self._process = Popen(args, stdout=PIPE, stderr=PIPE, env=env)
else:
print("Starting new cloud server with prompt console at {}:{}".format(self.host, self.port))
args[0] = compas._os.select_python('python')
args = " ".join(args)
os.system('start ' + args)
```
in the `else` part the call to `os.system('start python ...')` fails because `start` is not recognised as command...

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.