Hacktoberfest 2026: die Issues, die Maintainer für den Oktober markiert haben – offen und einsteigerfreundlich. Hacktoberfest-Issues durchsuchen

numpy required for C++ library to work with python bindings

Offen
#358 0 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen

Dieses Issue hat noch niemand übernommen.

Bewertung

Schwierigkeit
4/5
Geschätzter Aufwand
3-5 Tage
Anfängerfreundlichkeit
25/100
Issue-Typ
Bug
Klarheit
Muss geklärt werden
Aktivitätsstatus
Veraltet
Tech-Stack
cpp, python
Bereich
api

Rechercherichtung

Beginne damit, den Fehler mit dem gezeigten BOOST_PYTHON_MODULE(test_lib)-Einstiegspunkt zu reproduzieren, und vergleiche Python-Ausführungen mit und ohne vorherigen Import von numpy. Verfolge den Initialisierungspfad hinter test_lib.initialize() und sammle ausreichend Quellcode, um festzustellen, ob der numpy-Import erforderlich ist; abgeschlossen ist die Aufgabe, wenn du die Abhängigkeit erklärst oder den fehlschlagenden Initialisierungsschritt identifizierst.

Vom Indexierungsmodell aus dem Issue-Text verfasst.

Beschreibung

I've added Boost python bindings into a C++ library. Calling the initialization method of this C++ library from python will fail if numpy is not imported into python before importing my C++ library. There are no errors but the C++ library spits out it failed to initialize. Why would numpy be required in python for my boost bindings to work with this C++ library? See example below.

C++

// Boost imports I'm using
#include <boost/python.hpp>
#include <boost/python/dict.hpp>
#include <boost/python/object.hpp>
using namespace boost;

static bool InitializePy() {
    // Call library initialize here
}

BOOST_PYTHON_MODULE(test_lib)
{
    python::def("initialize", InitializePy);
}

Python

# import numpy
import test_lib
# Without importing numpy, this initialization will fail
test_lib.initialize()

I can share more source if anyone would like a look but the way I see it, regardless of what else is being done in C++, numpy needing to be imported in python is odd to me.

Vorherrschende Sprache
C++
Sterne
537
Forks
223
Ø Merge
11 Std. 22 Min.
Gemergte PRs (30 T.)
2

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Erste Schritte

  1. Lesen Sie das ganze Issue und danach den Beitragsleitfaden des Projekts.
  2. Schreiben Sie ins Issue, dass Sie es übernehmen — das erspart doppelte Arbeit.
  3. Forken Sie das Repository und arbeiten Sie in einem Branch.
  4. Öffnen Sie einen Pull Request, der die Issue-Nummer nennt.

Mehr aus boostorg/python

Alle Issues in boostorg/python

Ähnliche Issues

Weitere Issues zu C++

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.