I have a problem installing Elixir with Python 3 although I have installed SqlAlchemy 0.7.3 successfully? I've tried google-ing but I am loosing hope. Is there really a version of Elixir for Python 3? Thanks in advance.
Elixir for Python 3?
1.1k Views Asked by LEMUEL ADANE At
2
There are 2 best solutions below
0
Lennart Regebro
On
There has been work done on Elixir to support Python 3, but Elixir has not seen a release with this work included. I'm not involved in Elixir and do not know the status of this work, but you might want to try to use a checkout of the latest source code.
If that works, you should badger the authors into making a release.
If it doesn't work, you should join the mailing list and help port it. It's usually not very difficult.
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in PYTHON-3.X
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Kivy - Create new widget and set its position and size
- TypeError: encoding or errors without a string argument
- How to print varible name in python
- PyQt, Python 3: Lambda slot assigning signal argument to a variable?
- How to write data to stdin of the first process in a Python shell pipeline?
- pygame.draw.circle, still draws a square
- Duplicate Frames Created When Calling a Function in a Tkinter Application
- Python TypeError: can only concatenate tuple (not "int") to tuple
- recursively editing member variable: All instances have same value
- missing 1 required positional argument: 'key'
- How do I fix this sorting error?
- Dictionary values missing
- Why does opening a file in two different encodings work as expected?
- Binary bit flip generator in python
Related Questions in SQLALCHEMY
- sqlalchemy force all connections to close mysql
- How do I properly add data in SQLAlchemy?
- Are transactions in SQLAlchemy thread safe?
- TypeDecorator subclass trying to compare against NO_VALUE
- How do I revert / undo a `session.execute()` statement in SQLAlchemy
- Too much selects are made in one-to-one relationships in SQLALchemy
- Removing null values when concatenating columns in SQLAlchemy
- Enforcing uniqueness using SQLAlchemy association proxies
- Cornice schema validation with colanderalchemy
- How to do a custom query in Model View on *-to-Many relationship in Flask Admin?
- sqlalchemy select rows ordered by dependency
- How to properly join same table multiple times using sqlalchemy core api?
- SQLAlchemy: Check if a given value is in a list
- Create a `CheckConstraint` within a `UniqueConstraint`
- How can I define a constraint on an inherited column in SQLAlchemy?
Related Questions in CPYTHON
- Does Python automatically replace * 2 with << 1?
- How to move up and down between stack frames?
- weird behaviour of late import and scopes
- New python type created but PyGetSetDef core dumps
- What is python-dev package used for
- Python dictionary size vs object size efficiency
- Python C package source code header files are missing
- how to run a C code with argc argv from python?
- Unable to run CPython Script Executor in Pentaho
- Why syntax error messages for some built-in functions are different?
- How can asyncio ever not be thread safe considering the GIL?
- Determining if a memory leak is occurring in Python
- Why is PyObject_SetAttrString returning -1 (Python C-API)
- Python Threads are not Improving Speed
- How to break a direct reference cycle in CPython
Related Questions in PYTHON-ELIXIR
- Problem querying from a model object
- Non-existent column when using SQLite and MySQL with Elixir but not when used separately
- How to iterate through every class declaration, descended from a particular base class?
- How to make customizable "order by" for many-to-one relation to itself in Elixir or SQLAlchemy?
- How to order by count of many to many relation with Elixir?
- SQLAlchemy declarative extension vs. elixir
- How to create a class attribute and class property within Elixir/SqlAlchemy
- MySQL server has gone away - Disconnect handling via checkout event handler doesn't work
- Order by Count of OneToMany Elixir Relationship
- Nested transactions with SQLAlchemy and sqlite
- Elixir not creating my tables with default values
- Execute sql query with Elixir
- Difference between ":", "@" and nothing in python docstrings
- Elixir EntityCollection.remove() doesn't work
- Elixir for Python 3?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Looking at the source code, I see that the latest change happened 10 months ago. Also, searching for
printI see that all the strings found in all branches useprintas a statement, not as a function and there isn't any log string that makes a reference to python 3.Hence, since I don't see any trace of work towards supporting python 3, I'd say there's no Elixir for Python 3 unless that work is hosted in a different location.
Edit: As pointed out by a comment, in
setup.pythere's some useful information. In particular, for python3 2to3 is executed to generate a python3 version of the code. Note that this depends completely on 2to3 and doesn't guarantee that the final result is going to work fine.