GithubHelp home page GithubHelp logo

Comments (5)

david-cortes avatar david-cortes commented on August 19, 2024

That's a really weird error - if I understand it correctly, it's complaining about not having the random headers for C++. What kind of compiler are you using?

from contextualbandits.

reneix avatar reneix commented on August 19, 2024

gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.1.0 (clang-902.0.39.2)
Target: x86_64-apple-darwin17.4.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

from contextualbandits.

reneix avatar reneix commented on August 19, 2024

yes, but when I test as follow, it just worked...I will do more test, thx

gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -arch x86_64 -arch x86_64 -c test.cpp -o test.o -O3 -march=native -std=c++11

test.cpp
#include <random>
#include <iostream>

int main()
{
std::random_device dev;
std::mt19937 rng(dev());
std::uniform_int_distributionstd::mt19937::result_type dist6(1,6); // distribution in range [1, 6]

std::cout << dist6(rng) << std::endl;

}

from contextualbandits.

david-cortes avatar david-cortes commented on August 19, 2024

No idea then, other than perhaps having to do with using GCC's headers with CLANG compiler. Perhaps your python setup is not using the compiler with those same arguments. Maybe you could try something like this:

export CC=clang
export CXX=clang++
pip install contextualbandits

(or replace clang->gcc, clang++->g++)

In order to make sure that the right compilation command is being issued, you could also download this repository and run:

python setup.py build_ext --inplace --force

Then you will see the full compilation commands starting with gcc/g++/clang/clang++ or whatever compiler is being used, and determine whether it has the same --with-gxx-include-dir.

from contextualbandits.

david-cortes avatar david-cortes commented on August 19, 2024

I recall BTW I've gotten such an error in the past when I've tried to compile some c++ file with a c compiler.

from contextualbandits.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.