Jonas Haag
Jonas Haag
It can mess up your Conda installation. Conda lives in the base environment.
https://mamba.readthedocs.io/en/latest/installation.html#micromamba
Can you try this on the machine? ```cpp // tmp.cpp #include #include int main() { std::cout
Just FYI editing a post doesn't send any notifications so I didn't see your question. I think most compilers younger than 5 years old do support C++17 so I don't...
@hannah413 can you try my test program please?
Create a file `tmp.cpp` with the contents in the first code block and run the second code block in bash.
Uh oh, that seems to be a very old C++ compiler that you have installed. To get the version: ``` c++ --version # Or maybe this is more recent? Usually...
Actually you could try the C++ compiler from conda-forge: ``` conda install -c conda-forge cxx-compiler ```
University clusters tend to have ancient versions of just about everything for reasons that I don’t understand. Best to use conda-forge heavily :-)
You can remove `__fs::` as in my first snippet, it was added only to work with an older compiler (although not as old as the one on your cluster :-D)...