• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Can I use Mac OS System to learn this course?

Joined
5/9/13
Messages
2
Points
11
Hello, I don't have the Windows system laptop but a Macbook. Can I use the Mac system to learn the C++ course? If yes, what software can I use to develop C++ codes? Thank you.
 
Hi
You may wish to look into running the Windows OS on your Mac laptop. Two software products that help with this are:
Parallels Desktop for Mac
VirtualBox for Mac OS X

These "virtualization" programs allow you to share your CPU, memory, disk and other hardware resources among multiple running operating systems.

For sure there are details that will matter such as what CPU your laptop uses, what version of MacOS you have and how much RAM and disk space you have. Also note that you will need to have a legitimately licensed copy of Windows OS (such as Windows 7). If you are at Baruch College, you should be able to make use of our MSDN Academic Alliance (a.k.a. DreamSpark) program that provides students with free access to Windows OS, Visual studio and other Microsoft development tools. Many other schools subscribe to DreamSpark as well in addition to members of IEEE Computer Society.

Cheers,

Prof. H.
 
I don't know MacOS and my Excel interface is not supported. And Boost C++ libraries might be an issue.

Ideally, Wintel. (IMO)
 
I don't know MacOS and my Excel interface is not supported. And Boost C++ libraries might be an issue.

Ideally, Wintel. (IMO)

Daniel, Boost definitely won't be an issue.

While GCC supplied with OS X by default is a bit old (but you can get a recent version yourself, using MacPorts or Homebrew), Clang is an excellent compiler, and both offer arguably the best C++11 support right now:
http://www.aristeia.com/C 11/C 11FeatureAvailability.htm

// Clang is not a problem at least since 2010: http://blog.llvm.org/2010/05/clang-builds-boost.html

One can always check under Release Notes -> Compilers Tested:
http://www.boost.org/users/history/

// At the moment of writing, Boost Version 1.53.0:
http://www.boost.org/users/history/version_1_53_0.html#version_1_53_0.compilers_tested

See also:
http://www.boost.org/doc/libs/relea...toolkit/main_overview/compilers_overview.html

Probably right on Excel, though.
 
Hi ,

im a mac user, i'd like to know what software to download and what link to use, are u able to help me?

Thanks
 
Hi ,

im a mac user, i'd like to know what software to download and what link to use, are u able to help me?

Thanks

I would recommend that you learn this on a Win platform to save you from the headaches later on. You can simply install something like Bootcamp/Parallels on your Mac and install Visual Studio on that partition.
 
I would recommend that you learn this on a Win platform to save you from the headaches later on.

yep. Save yourself hassle and just use VS2010/2012 Express.

Especially for

Boost
Excel visualisation
 
Hi ,

im a mac user, i'd like to know what software to download and what link to use, are u able to help me?

Thanks
I concur with Andy and Dr. Duffy above.

If you need to use Mac (which students have successfully used through level 8), students have used xcode. However, this is not recommended.
 
Back
Top